home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
New Star Software Collection
/
NSS_Collection.iso
/
5-029 turbo debugger and assem
/
disks.7z
/
3
/
CHAPXMPL.ARC
/
FROM_NEW.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1988-08-29
|
386 b
|
23 lines
; FROM_NEW.ASM
extrn PopMessage_0:far
.model large,c
.code
public FROM_ASM
FROM_ASM proc
push ds
mov ax, OFFSET DGROUP:mess1
push ax
call FAR PTR PopMessage_0
pop cx
pop cx
ret
FROM_ASM ENDP
.data
mess1 DB "Report: Condition Red",0
END